home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsrop.h < prev    next >
C/C++ Source or Header  |  1996-11-12  |  2KB  |  44 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsrop.h */
  20. /* RasterOp / transparency / render algorithm procedure interface */
  21.  
  22. #ifndef gsrop_INCLUDED
  23. #  define gsrop_INCLUDED
  24.  
  25. #include "gsropt.h"
  26.  
  27. /* Procedural interface */
  28.  
  29. void    gs_setrasterop(P2(gs_state *, gs_rop3_t));
  30. gs_rop3_t
  31.     gs_currentrasterop(P1(const gs_state *));
  32. void    gs_setsourcetransparent(P2(gs_state *, bool));
  33. bool    gs_currentsourcetransparent(P1(const gs_state *));
  34. void    gs_settexturetransparent(P2(gs_state *, bool));
  35. bool    gs_currenttexturetransparent(P1(const gs_state *));
  36. int    gs_setrenderalgorithm(P2(gs_state *, int));
  37. int    gs_currentrenderalgorithm(P1(const gs_state *));
  38. /* Save/restore the combined logical operation. */
  39. gs_logical_operation_t
  40.     gs_current_logical_op(P1(const gs_state *));
  41. void    gs_set_logical_op(P2(gs_state *, gs_logical_operation_t));
  42.  
  43. #endif                    /* gsrop_INCLUDED */
  44.